home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / os2emxpath.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  10KB  |  400 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Common pathname manipulations, OS/2 EMX version.
  5.  
  6. Instead of importing this module directly, import os and refer to this
  7. module as os.path.
  8. '''
  9. import os
  10. import stat
  11. __all__ = [
  12.     'normcase',
  13.     'isabs',
  14.     'join',
  15.     'splitdrive',
  16.     'split',
  17.     'splitext',
  18.     'basename',
  19.     'dirname',
  20.     'commonprefix',
  21.     'getsize',
  22.     'getmtime',
  23.     'getatime',
  24.     'getctime',
  25.     'islink',
  26.     'exists',
  27.     'lexists',
  28.     'isdir',
  29.     'isfile',
  30.     'ismount',
  31.     'walk',
  32.     'expanduser',
  33.     'expandvars',
  34.     'normpath',
  35.     'abspath',
  36.     'splitunc',
  37.     'curdir',
  38.     'pardir',
  39.     'sep',
  40.     'pathsep',
  41.     'defpath',
  42.     'altsep',
  43.     'extsep',
  44.     'devnull',
  45.     'realpath',
  46.     'supports_unicode_filenames']
  47. curdir = '.'
  48. pardir = '..'
  49. extsep = '.'
  50. sep = '/'
  51. altsep = '\\'
  52. pathsep = ';'
  53. defpath = '.;C:\\bin'
  54. devnull = 'nul'
  55.  
  56. def normcase(s):
  57.     '''Normalize case of pathname.
  58.  
  59.     Makes all characters lowercase and all altseps into seps.'''
  60.     return s.replace('\\', '/').lower()
  61.  
  62.  
  63. def isabs(s):
  64.     '''Test whether a path is absolute'''
  65.     s = splitdrive(s)[1]
  66.     if s != '':
  67.         pass
  68.     return s[:1] in '/\\'
  69.  
  70.  
  71. def join(a, *p):
  72.     '''Join two or more pathname components, inserting sep as needed'''
  73.     path = a
  74.     for b in p:
  75.         if isabs(b):
  76.             path = b
  77.             continue
  78.         if path == '' or path[-1:] in '/\\:':
  79.             path = path + b
  80.             continue
  81.         path = path + '/' + b
  82.     
  83.     return path
  84.  
  85.  
  86. def splitdrive(p):
  87.     '''Split a pathname into drive and path specifiers. Returns a 2-tuple
  88. "(drive,path)";  either part may be empty'''
  89.     if p[1:2] == ':':
  90.         return (p[0:2], p[2:])
  91.     
  92.     return ('', p)
  93.  
  94.  
  95. def splitunc(p):
  96.     """Split a pathname into UNC mount point and relative path specifiers.
  97.  
  98.     Return a 2-tuple (unc, rest); either part may be empty.
  99.     If unc is not empty, it has the form '//host/mount' (or similar
  100.     using backslashes).  unc+rest is always the input path.
  101.     Paths containing drive letters never have an UNC part.
  102.     """
  103.     if p[1:2] == ':':
  104.         return ('', p)
  105.     
  106.     firstTwo = p[0:2]
  107.     if firstTwo == '/' * 2 or firstTwo == '\\' * 2:
  108.         normp = normcase(p)
  109.         index = normp.find('/', 2)
  110.         if index == -1:
  111.             return ('', p)
  112.         
  113.         index = normp.find('/', index + 1)
  114.         if index == -1:
  115.             index = len(p)
  116.         
  117.         return (p[:index], p[index:])
  118.     
  119.     return ('', p)
  120.  
  121.  
  122. def split(p):
  123.     '''Split a pathname.
  124.  
  125.     Return tuple (head, tail) where tail is everything after the final slash.
  126.     Either part may be empty.'''
  127.     (d, p) = splitdrive(p)
  128.     i = len(p)
  129.     while i and p[i - 1] not in '/\\':
  130.         i = i - 1
  131.     head = p[:i]
  132.     tail = p[i:]
  133.     head2 = head
  134.     while head2 and head2[-1] in '/\\':
  135.         head2 = head2[:-1]
  136.     if not head2:
  137.         pass
  138.     head = head
  139.     return (d + head, tail)
  140.  
  141.  
  142. def splitext(p):
  143.     '''Split the extension from a pathname.
  144.  
  145.     Extension is everything from the last dot to the end.
  146.     Return (root, ext), either part may be empty.'''
  147.     (root, ext) = ('', '')
  148.     for c in p:
  149.         None if c in [
  150.             '/',
  151.             '\\'] else ext
  152.         if ext:
  153.             ext = ext + c
  154.             continue
  155.         root = root + c
  156.     
  157.     return (root, ext)
  158.  
  159.  
  160. def basename(p):
  161.     '''Returns the final component of a pathname'''
  162.     return split(p)[1]
  163.  
  164.  
  165. def dirname(p):
  166.     '''Returns the directory component of a pathname'''
  167.     return split(p)[0]
  168.  
  169.  
  170. def commonprefix(m):
  171.     '''Given a list of pathnames, returns the longest common leading component'''
  172.     if not m:
  173.         return ''
  174.     
  175.     prefix = m[0]
  176.     for item in m:
  177.         for i in range(len(prefix)):
  178.             if prefix[:i + 1] != item[:i + 1]:
  179.                 prefix = prefix[:i]
  180.                 if i == 0:
  181.                     return ''
  182.                 
  183.                 break
  184.                 continue
  185.         
  186.     
  187.     return prefix
  188.  
  189.  
  190. def getsize(filename):
  191.     '''Return the size of a file, reported by os.stat()'''
  192.     return os.stat(filename).st_size
  193.  
  194.  
  195. def getmtime(filename):
  196.     '''Return the last modification time of a file, reported by os.stat()'''
  197.     return os.stat(filename).st_mtime
  198.  
  199.  
  200. def getatime(filename):
  201.     '''Return the last access time of a file, reported by os.stat()'''
  202.     return os.stat(filename).st_atime
  203.  
  204.  
  205. def getctime(filename):
  206.     '''Return the creation time of a file, reported by os.stat().'''
  207.     return os.stat(filename).st_ctime
  208.  
  209.  
  210. def islink(path):
  211.     '''Test for symbolic link.  On OS/2 always returns false'''
  212.     return False
  213.  
  214.  
  215. def exists(path):
  216.     '''Test whether a path exists'''
  217.     
  218.     try:
  219.         st = os.stat(path)
  220.     except os.error:
  221.         return False
  222.  
  223.     return True
  224.  
  225. lexists = exists
  226.  
  227. def isdir(path):
  228.     '''Test whether a path is a directory'''
  229.     
  230.     try:
  231.         st = os.stat(path)
  232.     except os.error:
  233.         return False
  234.  
  235.     return stat.S_ISDIR(st.st_mode)
  236.  
  237.  
  238. def isfile(path):
  239.     '''Test whether a path is a regular file'''
  240.     
  241.     try:
  242.         st = os.stat(path)
  243.     except os.error:
  244.         return False
  245.  
  246.     return stat.S_ISREG(st.st_mode)
  247.  
  248.  
  249. def ismount(path):
  250.     '''Test whether a path is a mount point (defined as root of drive)'''
  251.     (unc, rest) = splitunc(path)
  252.     if unc:
  253.         return rest in ('', '/', '\\')
  254.     
  255.     p = splitdrive(path)[1]
  256.     if len(p) == 1:
  257.         pass
  258.     return p[0] in '/\\'
  259.  
  260.  
  261. def walk(top, func, arg):
  262.     '''Directory tree walk whth callback function.
  263.  
  264.     walk(top, func, arg) calls func(arg, d, files) for each directory d
  265.     in the tree rooted at top (including top itself); files is a list
  266.     of all the files and subdirs in directory d.'''
  267.     
  268.     try:
  269.         names = os.listdir(top)
  270.     except os.error:
  271.         return None
  272.  
  273.     func(arg, top, names)
  274.     exceptions = ('.', '..')
  275.     for name in names:
  276.         if name not in exceptions:
  277.             name = join(top, name)
  278.             if isdir(name):
  279.                 walk(name, func, arg)
  280.             
  281.         isdir(name)
  282.     
  283.  
  284.  
  285. def expanduser(path):
  286.     '''Expand ~ and ~user constructs.
  287.  
  288.     If user or $HOME is unknown, do nothing.'''
  289.     if path[:1] != '~':
  290.         return path
  291.     
  292.     i = 1
  293.     n = len(path)
  294.     while i < n and path[i] not in '/\\':
  295.         i = i + 1
  296.     if i == 1:
  297.         if 'HOME' in os.environ:
  298.             userhome = os.environ['HOME']
  299.         elif 'HOMEPATH' not in os.environ:
  300.             return path
  301.         else:
  302.             
  303.             try:
  304.                 drive = os.environ['HOMEDRIVE']
  305.             except KeyError:
  306.                 drive = ''
  307.  
  308.             userhome = join(drive, os.environ['HOMEPATH'])
  309.     else:
  310.         return path
  311.     return userhome + path[i:]
  312.  
  313.  
  314. def expandvars(path):
  315.     '''Expand shell variables of form $var and ${var}.
  316.  
  317.     Unknown variables are left unchanged.'''
  318.     if '$' not in path:
  319.         return path
  320.     
  321.     import string as string
  322.     varchars = string.letters + string.digits + '_-'
  323.     res = ''
  324.     index = 0
  325.     pathlen = len(path)
  326.     while index < pathlen:
  327.         c = path[index]
  328.         if c == "'":
  329.             path = path[index + 1:]
  330.             pathlen = len(path)
  331.             
  332.             try:
  333.                 index = path.index("'")
  334.                 res = res + "'" + path[:index + 1]
  335.             except ValueError:
  336.                 res = res + path
  337.                 index = pathlen - 1
  338.             except:
  339.                 None<EXCEPTION MATCH>ValueError
  340.             
  341.  
  342.         None<EXCEPTION MATCH>ValueError
  343.         if c == '$':
  344.             None if path[index + 1:index + 2] == '$' else None<EXCEPTION MATCH>ValueError
  345.             var = ''
  346.             index = index + 1
  347.             c = path[index:index + 1]
  348.             while c != '' and c in varchars:
  349.                 var = var + c
  350.                 index = index + 1
  351.                 c = path[index:index + 1]
  352.             if var in os.environ:
  353.                 res = res + os.environ[var]
  354.             
  355.             if c != '':
  356.                 res = res + c
  357.             
  358.         else:
  359.             res = res + c
  360.         index = index + 1
  361.     return res
  362.  
  363.  
  364. def normpath(path):
  365.     '''Normalize path, eliminating double slashes, etc.'''
  366.     path = path.replace('\\', '/')
  367.     (prefix, path) = splitdrive(path)
  368.     while path[:1] == '/':
  369.         prefix = prefix + '/'
  370.         path = path[1:]
  371.     comps = path.split('/')
  372.     i = 0
  373.     while i < len(comps):
  374.         if comps[i] == '.':
  375.             del comps[i]
  376.             continue
  377.         if comps[i] == '..' and i > 0 and comps[i - 1] not in ('', '..'):
  378.             del comps[i - 1:i + 1]
  379.             i = i - 1
  380.             continue
  381.         if comps[i] == '' and i > 0 and comps[i - 1] != '':
  382.             del comps[i]
  383.             continue
  384.         i = i + 1
  385.     if not prefix and not comps:
  386.         comps.append('.')
  387.     
  388.     return prefix + '/'.join(comps)
  389.  
  390.  
  391. def abspath(path):
  392.     '''Return the absolute version of a path'''
  393.     if not isabs(path):
  394.         path = join(os.getcwd(), path)
  395.     
  396.     return normpath(path)
  397.  
  398. realpath = abspath
  399. supports_unicode_filenames = False
  400.